From 2b6651bb015bcee0b29059ab0e7799b1ba76cd4e Mon Sep 17 00:00:00 2001 From: robertl Date: Thu, 28 Feb 2008 15:45:42 +0000 Subject: [PATCH] MTK improvements. Supports waypoints now. Adds course and speed. --- mtk_logger.c | 72 +- reference/track/mtk_logger.gpx | 1670 ++++++++++++++++++++++++++++++++ xmldoc/formats/mtk-bin.xml | 24 +- xmldoc/formats/mtk.xml | 14 +- 4 files changed, 1749 insertions(+), 31 deletions(-) diff --git a/mtk_logger.c b/mtk_logger.c index 5515f3148..d1cb3fc0e 100644 --- a/mtk_logger.c +++ b/mtk_logger.c @@ -36,20 +36,16 @@ Example usage:: - # Read from USB port, output in GPX format + # Read from USB port, output trackpoints & waypoints in GPX format ./gpsbabel -D 2 -t -w -i mtk -f /dev/ttyUSB0 -o gpx -F out.gpx - # Parse an existing .bin file (data_2007_09_04.bin), output as + # Parse an existing .bin file (data_2007_09_04.bin), output trackpoints as # both CSV file and GPX - ./gpsbabel -D 2 -t -w -i mtk-bin,csv=data__2007_09_04.csv -f data_2007_09_04.bin -o gpx -F out.gpx + ./gpsbabel -D 2 -t -i mtk-bin,csv=data__2007_09_04.csv -f data_2007_09_04.bin -o gpx -F out.gpx Todo: - o Create a testsuit of .bin to .gpx/csv files - o More documentation ? o .... - - */ #include "defs.h" @@ -194,6 +190,7 @@ static char *port; /* serial port name */ static char *erase; /* erase ? command option */ static char *csv_file; /* csv ? command option */ static unsigned int bmask = 0x000e0e7f; +static unsigned int mlog_period, mlog_distance, mlog_speed; /* in 10:ths of sec, m, km/h */ const char LIVE_CHAR[4] = {'-', '\\','|','/'}; @@ -512,23 +509,24 @@ static int add_trackpoint(int idx, unsigned long bmask, struct data_item *itm){ char wp_name[20]; waypoint *trk = waypt_new(); - if ( trk_head == NULL ){ + if ( global_opts.masked_objective & TRKDATAMASK && trk_head == NULL ){ trk_head = route_head_alloc(); + xasprintf(&trk_head->rte_desc, "Log every %.0f sec, %.0f m, %.0f km/h" + , mlog_period/10., mlog_distance/10., mlog_speed/10.); track_add_head(trk_head); } - sprintf(wp_name, "TP%04d", idx); - if ( bmask & (1<latitude = itm->lat; trk->longitude = itm->lon; } else { - return -1; // GPX requires lat/lon... + return -1; // GPX requires lat/lon... } - if ( bmask & (1<altitude = itm->height; - + // WAYPT_SET(trk, altitude, itm->height); + } trk->creation_time = itm->timestamp; // in UTC.. if ( bmask & (1<microseconds = MILLI_TO_MICRO(itm->timestamp_ms); @@ -540,11 +538,12 @@ static int add_trackpoint(int idx, unsigned long bmask, struct data_item *itm){ if ( bmask & (1<vdop = itm->vdop; - if ( bmask & (1<course = itm->heading; - if ( bmask & (1<speed = itm->speed; - + if ( bmask & (1<heading); + } + if ( bmask & (1<speed)); + } if ( bmask & (1<valid){ case 0x0040: trk->fix = fix_unknown;break; /* Estimated mode */ @@ -565,10 +564,28 @@ static int add_trackpoint(int idx, unsigned long bmask, struct data_item *itm){ if ( bmask & (1<sat = itm->sat_used; - trk->shortname = xstrdup(wp_name); - - track_add_wpt(trk_head, trk); - + // RCR is a bitmask of possibly several log reasons.. + if ( global_opts.masked_objective & WPTDATAMASK + && bmask & (1<rcr & 0x0008 ) + { + /* Button press -- create waypoint, start count at 1 */ + waypoint *w = waypt_dupe(trk); + + sprintf(wp_name, "WP%04d", waypt_count()+1); + w->shortname = xstrdup(wp_name); + waypt_add(w); + } + // In theory we would not add the waypoint to the list of + // trackpoints. But as the MTK logger restart the + // log session from the button press we would loose a + // trackpoint unless we include/duplicate it. + + if ( global_opts.masked_objective & TRKDATAMASK ){ + sprintf(wp_name, "TP%04d", idx); + trk->shortname = xstrdup(wp_name); + + track_add_wpt(trk_head, trk); + } return 0; } @@ -907,12 +924,15 @@ static int mtk_parse_info(const unsigned char *data, int dataLen){ break; case 0x03: dbg(1, "# Log period change %.0f sec\n", cmd/10.); + mlog_period = cmd; break; case 0x04: dbg(1, "# Log distance change %.1f m\n", cmd/10.); + mlog_distance = cmd; break; case 0x05: dbg(1, "# Log speed change %.1f km/h\n", cmd/10.); + mlog_speed = cmd; break; case 0x06: dbg(1, "# Log policy change 0x%.4x\n", cmd); @@ -923,9 +943,9 @@ static int mtk_parse_info(const unsigned char *data, int dataLen){ break; case 0x07: if ( cmd == 0x0106 ) - ; // fprintf(stderr,"# GPS Logger# Turned On\n"); // Fixme - start new trk + dbg(5, "# GPS Logger# Turned On\n"); // Fixme - start new trk if ( cmd == 0x0104 ) - ; // fprintf(stderr,"# GPS Logger# Log disabled\n"); + dbg(5, "# GPS Logger# Log disabled\n"); break; default: dbg(1, "## Unknown INFO 0x%.2x\n", data[7]); @@ -1002,6 +1022,10 @@ static void file_read(void) { mask, log_period/10., log_distance/10., log_speed/10.); bmask = mask; dbg(3, "Using initial bitmask %.8x for parsing the .bin file\n", bmask); + + mlog_period = log_period; + mlog_distance = log_distance; + mlog_speed = log_speed; } pos = 0x200; // skip header...first data position diff --git a/reference/track/mtk_logger.gpx b/reference/track/mtk_logger.gpx index e7030f91b..56fa96e3d 100644 --- a/reference/track/mtk_logger.gpx +++ b/reference/track/mtk_logger.gpx @@ -7,71 +7,129 @@ xmlns="http://www.topografix.com/GPX/1/0" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd"> + + 98.469612 + + WP0001 + WP0001 + WP0001 + none + + + 34.319580 + + WP0002 + WP0002 + WP0002 + 3d + 8 + + + 96.420593 + + WP0003 + WP0003 + WP0003 + 3d + 8 + + + 25.730627 + + WP0004 + WP0004 + WP0004 + 3d + 7 + + Log every 5 sec, 100 m, 0 km/h 98.469612 + 0.000000 + 0.000000 TP0001 none 98.469612 + 0.000000 + 0.000000 TP0002 none 98.469612 + 0.000000 + 0.000000 TP0003 none 98.469612 + 0.000000 + 0.000000 TP0004 none 98.469612 + 0.000000 + 0.000000 TP0005 none 98.469612 + 0.000000 + 0.000000 TP0006 none 98.469612 + 0.000000 + 0.000000 TP0007 none 98.469612 + 0.000000 + 0.000000 TP0008 none 98.469612 + 0.000000 + 0.000000 TP0009 none 98.469612 + 0.000000 + 0.000000 TP0010 none 98.408684 + 0.000000 + 0.595044 TP0011 none 2 @@ -79,6 +137,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 98.469284 + 0.000000 + 0.303619 TP0012 none 2 @@ -86,6 +146,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 22.479507 + 0.000000 + 1.202394 TP0013 3d 6 @@ -93,6 +155,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.486053 + 0.000000 + 1.078671 TP0014 3d 6 @@ -100,6 +164,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.286411 + 0.000000 + 1.052290 TP0015 3d 8 @@ -107,6 +173,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 33.625595 + 0.000000 + 0.991739 TP0016 3d 8 @@ -114,6 +182,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.133461 + 0.000000 + 0.441197 TP0017 3d 8 @@ -121,6 +191,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.461449 + 0.000000 + 0.581685 TP0018 3d 8 @@ -128,6 +200,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.240189 + 0.000000 + 0.083656 TP0019 3d 9 @@ -135,6 +209,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.319580 + 0.000000 + 0.332716 TP0020 3d 8 @@ -142,6 +218,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.183079 + 0.000000 + 0.529361 TP0021 3d 8 @@ -149,6 +227,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.388592 + 0.000000 + 1.338508 TP0022 3d 9 @@ -156,6 +236,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.792522 + 0.000000 + 1.624839 TP0023 3d 9 @@ -163,6 +245,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.034256 + 0.000000 + 1.647150 TP0024 3d 9 @@ -170,6 +254,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.393795 + 0.000000 + 1.380853 TP0025 3d 9 @@ -177,6 +263,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.952080 + 145.024078 + 1.745507 TP0026 3d 9 @@ -184,6 +272,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.920841 + 142.223740 + 1.848763 TP0027 3d 8 @@ -191,6 +281,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.358654 + 144.998688 + 1.514581 TP0028 3d 8 @@ -198,6 +290,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.561657 + 144.998688 + 1.358067 TP0029 3d 9 @@ -205,6 +299,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.367092 + 144.998688 + 1.377709 TP0030 3d 9 @@ -212,6 +308,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.278236 + 144.998688 + 1.568756 TP0031 3d 9 @@ -219,6 +317,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.554344 + 144.998688 + 1.633001 TP0032 3d 9 @@ -226,6 +326,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.263260 + 144.998688 + 0.050764 TP0033 3d 9 @@ -233,6 +335,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.184391 + 144.998688 + 0.427177 TP0034 3d 8 @@ -240,6 +344,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.184006 + 144.998688 + 0.030582 TP0035 3d 8 @@ -247,6 +353,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.194073 + 144.998688 + 0.004273 TP0036 3d 8 @@ -254,6 +362,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.194149 + 144.998688 + 0.007845 TP0037 3d 9 @@ -261,6 +371,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.195225 + 144.998688 + 0.008956 TP0038 3d 8 @@ -268,6 +380,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.154613 + 144.998688 + 1.449671 TP0039 3d 8 @@ -275,6 +389,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.225224 + 148.006943 + 1.417506 TP0040 3d 7 @@ -282,6 +398,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.693150 + 145.174026 + 1.316705 TP0041 3d 9 @@ -289,6 +407,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.124382 + 145.174026 + 0.666859 TP0042 3d 9 @@ -296,6 +416,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.864819 + 145.174026 + 0.295886 TP0043 3d 8 @@ -303,6 +425,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.707458 + 145.174026 + 0.823240 TP0044 3d 9 @@ -310,6 +434,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.034626 + 145.174026 + 1.485445 TP0045 3d 8 @@ -317,6 +443,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.846035 + 145.174026 + 1.036942 TP0046 3d 9 @@ -324,6 +452,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.722980 + 193.604065 + 2.036720 TP0047 3d 9 @@ -331,6 +461,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.815575 + 193.604065 + 0.033974 TP0048 3d 9 @@ -338,6 +470,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.775021 + 193.604065 + 0.102273 TP0049 3d 9 @@ -345,6 +479,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.755974 + 193.604065 + 0.336602 TP0050 3d 8 @@ -352,6 +488,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.742401 + 193.604065 + 0.485956 TP0051 3d 9 @@ -359,6 +497,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.739773 + 193.604065 + 0.192314 TP0052 3d 9 @@ -366,6 +506,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.762974 + 193.604065 + 1.067858 TP0053 3d 7 @@ -373,6 +515,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.767914 + 351.843750 + 2.428406 TP0054 3d 8 @@ -380,6 +524,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.722569 + 2.294798 + 0.254981 TP0055 3d 7 @@ -387,6 +533,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.270573 + 2.294798 + 0.739139 TP0056 3d 9 @@ -394,6 +542,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.400570 + 2.294798 + 1.418809 TP0057 3d 9 @@ -401,6 +551,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.657951 + 2.294798 + 1.219950 TP0058 3d 9 @@ -408,6 +560,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.570877 + 143.381439 + 1.271205 TP0059 3d 9 @@ -415,6 +569,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.084393 + 143.381439 + 1.521001 TP0060 3d 9 @@ -422,6 +578,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.521702 + 143.381439 + 1.205074 TP0061 3d 9 @@ -429,6 +587,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.846340 + 140.877411 + 1.394174 TP0062 3d 9 @@ -436,6 +596,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.743946 + 140.877411 + 1.373265 TP0063 3d 9 @@ -443,6 +605,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.074448 + 140.877411 + 1.949689 TP0064 3d 7 @@ -450,6 +614,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.912285 + 142.614777 + 1.026324 TP0065 3d 9 @@ -457,6 +623,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.604111 + 142.614777 + 1.223418 TP0066 3d 9 @@ -464,6 +632,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.425282 + 144.389893 + 1.751635 TP0067 3d 9 @@ -471,6 +641,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.241436 + 144.389893 + 1.294486 TP0068 3d 8 @@ -478,6 +650,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.955845 + 144.389893 + 1.647364 TP0069 3d 7 @@ -485,6 +659,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.168156 + 144.389893 + 1.607520 TP0070 3d 8 @@ -492,6 +668,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.903522 + 142.798004 + 1.142946 TP0071 3d 8 @@ -499,6 +677,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.243340 + 142.798004 + 1.183903 TP0072 3d 9 @@ -506,6 +686,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.329205 + 142.798004 + 0.747410 TP0073 3d 9 @@ -513,6 +695,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.154198 + 142.798004 + 1.393951 TP0074 3d 9 @@ -520,6 +704,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.982079 + 142.061447 + 0.568036 TP0075 3d 9 @@ -527,6 +713,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.856762 + 142.061447 + 1.264928 TP0076 3d 7 @@ -534,6 +722,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 49.895744 + 142.061447 + 1.597790 TP0077 3d 8 @@ -541,6 +731,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.709484 + 152.146713 + 1.557961 TP0078 3d 8 @@ -548,6 +740,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.882195 + 153.529343 + 1.451341 TP0079 3d 8 @@ -555,6 +749,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.683334 + 153.529343 + 1.783310 TP0080 3d 8 @@ -562,6 +758,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.076900 + 153.663147 + 1.164113 TP0081 3d 9 @@ -569,6 +767,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.519577 + 153.663147 + 1.421694 TP0082 3d 8 @@ -576,6 +776,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.441086 + 150.640991 + 1.617561 TP0083 3d 9 @@ -583,6 +785,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.741417 + 150.640991 + 1.615349 TP0084 3d 8 @@ -590,6 +794,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.093151 + 149.428802 + 1.545561 TP0085 3d 8 @@ -597,6 +803,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.699978 + 149.875687 + 1.716336 TP0086 3d 9 @@ -604,6 +812,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.618553 + 152.252014 + 1.283200 TP0087 3d 9 @@ -611,6 +821,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.382668 + 152.252014 + 1.692029 TP0088 3d 8 @@ -618,6 +830,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.774300 + 152.252014 + 1.408383 TP0089 3d 8 @@ -625,6 +839,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.711369 + 149.309753 + 1.432592 TP0090 3d 8 @@ -632,6 +848,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.587543 + 149.309753 + 1.508936 TP0091 3d 9 @@ -639,6 +857,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.019386 + 149.309753 + 1.569397 TP0092 3d 9 @@ -646,6 +866,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.535275 + 149.309753 + 1.275553 TP0093 3d 8 @@ -653,6 +875,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.183327 + 149.309753 + 1.765915 TP0094 3d 9 @@ -660,6 +884,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.909645 + 145.645874 + 1.477868 TP0095 3d 9 @@ -667,6 +893,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.647190 + 148.902954 + 1.543354 TP0096 3d 9 @@ -674,6 +902,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.835602 + 144.122391 + 1.388543 TP0097 3d 9 @@ -681,6 +911,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.017097 + 146.880249 + 1.644109 TP0098 3d 9 @@ -688,6 +920,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.753429 + 148.921082 + 1.730035 TP0099 3d 9 @@ -695,6 +929,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.330765 + 150.968842 + 1.515581 TP0100 3d 9 @@ -702,6 +938,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.076145 + 150.968842 + 1.840335 TP0101 3d 9 @@ -709,6 +947,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.706478 + 148.422119 + 1.373394 TP0102 3d 9 @@ -716,6 +956,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.922268 + 148.422119 + 1.590267 TP0103 3d 9 @@ -723,6 +965,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.544731 + 151.107529 + 1.409475 TP0104 3d 9 @@ -730,6 +974,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.327339 + 151.107529 + 1.554864 TP0105 3d 9 @@ -737,6 +983,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.919357 + 151.477859 + 1.751008 TP0106 3d 9 @@ -744,6 +992,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.317135 + 151.477859 + 1.522876 TP0107 3d 8 @@ -751,6 +1001,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.531166 + 151.477859 + 1.714622 TP0108 3d 9 @@ -758,6 +1010,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.046326 + 152.840408 + 1.502839 TP0109 3d 9 @@ -765,6 +1019,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.769428 + 149.361832 + 1.327224 TP0110 3d 9 @@ -772,6 +1028,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.368031 + 152.900650 + 1.765702 TP0111 3d 9 @@ -779,6 +1037,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.278912 + 151.154800 + 1.519747 TP0112 3d 9 @@ -786,6 +1046,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.259140 + 147.538422 + 1.362496 TP0113 3d 9 @@ -793,6 +1055,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.068027 + 147.538422 + 1.420440 TP0114 3d 9 @@ -800,6 +1064,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.290741 + 147.538422 + 1.322631 TP0115 3d 9 @@ -807,6 +1073,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.767784 + 147.538422 + 0.003731 TP0116 3d 9 @@ -814,6 +1082,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.756531 + 147.538422 + 0.005525 TP0117 3d 9 @@ -821,6 +1091,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.756294 + 147.538422 + 0.357651 TP0118 3d 9 @@ -828,6 +1100,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.850208 + 147.538422 + 0.008619 TP0119 3d 9 @@ -835,6 +1109,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.804157 + 147.397430 + 1.517090 TP0120 3d 9 @@ -842,6 +1118,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.637447 + 146.144302 + 1.761965 TP0121 3d 9 @@ -849,6 +1127,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.108601 + 146.144302 + 1.467335 TP0122 3d 9 @@ -856,6 +1136,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.777046 + 142.318588 + 1.496280 TP0123 3d 9 @@ -863,6 +1145,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.541397 + 141.388947 + 1.330305 TP0124 3d 9 @@ -870,6 +1154,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.536469 + 143.495270 + 1.198822 TP0125 3d 9 @@ -877,6 +1163,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.682537 + 143.495270 + 1.067729 TP0126 3d 9 @@ -884,6 +1172,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.179867 + 143.495270 + 1.624703 TP0127 3d 8 @@ -891,6 +1181,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.463760 + 143.495270 + 0.698972 TP0128 3d 8 @@ -898,6 +1190,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.150234 + 142.500504 + 1.356076 TP0129 3d 8 @@ -905,6 +1199,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.289188 + 142.500504 + 1.253808 TP0130 3d 9 @@ -912,6 +1208,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.596752 + 142.500504 + 1.438421 TP0131 3d 8 @@ -919,6 +1217,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.536652 + 144.574066 + 1.567921 TP0132 3d 9 @@ -926,6 +1226,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.517883 + 144.574066 + 1.231057 TP0133 3d 9 @@ -933,6 +1235,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.777119 + 144.574066 + 1.233039 TP0134 3d 9 @@ -940,6 +1244,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.737053 + 139.446564 + 1.574051 TP0135 3d 9 @@ -947,6 +1253,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.639462 + 139.909683 + 1.701256 TP0136 3d 7 @@ -954,6 +1262,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 49.968063 + 139.909683 + 1.306830 TP0137 3d 8 @@ -961,6 +1271,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.496399 + 140.883011 + 1.270463 TP0138 3d 8 @@ -968,6 +1280,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.388054 + 142.145920 + 1.708128 TP0139 3d 8 @@ -975,6 +1289,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.298538 + 141.485916 + 1.370716 TP0140 3d 8 @@ -982,6 +1298,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.614559 + 139.331635 + 1.306925 TP0141 3d 8 @@ -989,6 +1307,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 61.026787 + 140.293564 + 1.095566 TP0142 3d 8 @@ -996,6 +1316,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.130711 + 142.518753 + 1.669077 TP0143 3d 8 @@ -1003,6 +1325,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.941925 + 142.518753 + 1.363789 TP0144 3d 8 @@ -1010,6 +1334,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.995216 + 143.172440 + 1.436229 TP0145 3d 8 @@ -1017,6 +1343,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.960083 + 143.604630 + 1.676285 TP0146 3d 8 @@ -1024,6 +1352,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.496315 + 143.604630 + 1.599863 TP0147 3d 8 @@ -1031,6 +1361,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.284981 + 144.729324 + 1.224165 TP0148 3d 8 @@ -1038,6 +1370,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.863914 + 141.792358 + 1.480727 TP0149 3d 8 @@ -1045,6 +1379,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 49.538685 + 141.792358 + 1.367680 TP0150 3d 8 @@ -1052,6 +1388,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.265648 + 138.983597 + 1.635845 TP0151 3d 8 @@ -1059,6 +1397,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.361546 + 154.235672 + 2.004167 TP0152 3d 8 @@ -1066,6 +1406,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.062138 + 152.009735 + 1.570184 TP0153 3d 7 @@ -1073,6 +1415,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.015408 + 152.009735 + 1.360496 TP0154 3d 8 @@ -1080,6 +1424,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.407997 + 146.927551 + 1.442805 TP0155 3d 8 @@ -1087,6 +1433,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.431839 + 144.441391 + 1.576182 TP0156 3d 8 @@ -1094,6 +1442,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.567123 + 148.208267 + 1.192787 TP0157 3d 8 @@ -1101,6 +1451,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.602558 + 148.208267 + 1.119605 TP0158 3d 8 @@ -1108,6 +1460,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.745941 + 148.208267 + 1.571468 TP0159 3d 8 @@ -1115,6 +1469,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.361366 + 148.971863 + 1.579011 TP0160 3d 8 @@ -1122,6 +1478,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.787598 + 146.601395 + 1.278249 TP0161 3d 8 @@ -1129,6 +1487,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 60.957695 + 148.007050 + 1.162211 TP0162 3d 9 @@ -1136,6 +1496,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.889812 + 148.007050 + 1.649157 TP0163 3d 9 @@ -1143,6 +1505,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.956284 + 149.515228 + 1.289196 TP0164 3d 8 @@ -1150,6 +1514,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 71.878624 + 149.515228 + 1.561889 TP0165 3d 9 @@ -1157,6 +1523,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.785545 + 149.515228 + 1.305686 TP0166 3d 9 @@ -1164,6 +1532,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 77.086639 + 149.515228 + 1.195862 TP0167 3d 8 @@ -1171,6 +1541,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 78.694016 + 147.837906 + 1.020726 TP0168 3d 8 @@ -1178,6 +1550,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.406738 + 147.837906 + 0.907884 TP0169 3d 9 @@ -1185,6 +1559,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 70.901184 + 147.837906 + 1.467844 TP0170 3d 7 @@ -1192,6 +1568,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 69.342346 + 148.045532 + 1.515221 TP0171 3d 7 @@ -1199,6 +1577,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 69.502632 + 148.045532 + 1.191063 TP0172 3d 9 @@ -1206,6 +1586,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.142738 + 148.045532 + 1.293753 TP0173 3d 8 @@ -1213,6 +1595,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 77.762215 + 146.587997 + 1.302800 TP0174 3d 8 @@ -1220,6 +1604,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 82.254944 + 146.587997 + 1.213632 TP0175 3d 9 @@ -1227,6 +1613,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 86.902519 + 146.587997 + 1.156784 TP0176 3d 9 @@ -1234,6 +1622,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 91.039124 + 146.587997 + 0.765005 TP0177 3d 9 @@ -1241,6 +1631,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 95.986641 + 146.587997 + 1.417850 TP0178 3d 8 @@ -1248,6 +1640,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 101.368256 + 146.587997 + 1.227613 TP0179 3d 8 @@ -1255,6 +1649,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 108.444229 + 148.233871 + 1.070183 TP0180 3d 9 @@ -1262,6 +1658,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 112.981300 + 148.233871 + 0.820349 TP0181 3d 8 @@ -1269,6 +1667,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 119.031311 + 150.412949 + 0.733967 TP0182 3d 8 @@ -1276,6 +1676,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 124.015923 + 150.412949 + 0.964730 TP0183 3d 8 @@ -1283,6 +1685,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 128.919205 + 149.867859 + 1.578155 TP0184 3d 9 @@ -1290,6 +1694,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 135.981369 + 149.867859 + 0.857911 TP0185 3d 9 @@ -1297,6 +1703,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 142.060516 + 152.427673 + 1.470509 TP0186 3d 9 @@ -1304,6 +1712,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 145.621017 + 152.427673 + 1.155793 TP0187 3d 8 @@ -1311,6 +1721,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 147.339279 + 152.427673 + 1.291424 TP0188 3d 9 @@ -1318,6 +1730,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 147.914948 + 152.427673 + 0.295060 TP0189 3d 8 @@ -1325,6 +1739,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 149.005646 + 152.427673 + 0.184193 TP0190 3d 8 @@ -1332,6 +1748,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 149.274536 + 152.427673 + 0.232211 TP0191 3d 8 @@ -1339,6 +1757,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 149.182236 + 152.427673 + 0.211573 TP0192 3d 8 @@ -1346,6 +1766,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 148.905640 + 152.427673 + 0.075801 TP0193 3d 8 @@ -1353,6 +1775,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 148.809921 + 152.427673 + 1.196584 TP0194 3d 8 @@ -1360,6 +1784,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 135.016083 + 152.427673 + 0.852625 TP0195 3d 8 @@ -1367,6 +1793,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 127.506874 + 151.834854 + 0.630221 TP0196 3d 8 @@ -1374,6 +1802,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 125.575233 + 151.834854 + 1.000494 TP0197 3d 8 @@ -1381,6 +1811,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 124.096199 + 151.834854 + 0.736805 TP0198 3d 9 @@ -1388,6 +1820,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 125.293076 + 151.834854 + 1.544690 TP0199 3d 8 @@ -1395,6 +1829,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 126.160484 + 151.834854 + 1.657514 TP0200 3d 9 @@ -1402,6 +1838,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 126.888947 + 151.834854 + 1.238977 TP0201 3d 8 @@ -1409,6 +1847,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 127.783066 + 151.834854 + 1.162266 TP0202 3d 8 @@ -1416,6 +1856,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 127.161171 + 151.834854 + 0.525801 TP0203 3d 8 @@ -1423,6 +1865,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 127.212303 + 151.709610 + 0.841543 TP0204 3d 8 @@ -1430,6 +1874,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 122.669693 + 150.292557 + 1.061839 TP0205 3d 9 @@ -1437,6 +1883,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 119.508095 + 150.292557 + 1.193486 TP0206 3d 9 @@ -1444,6 +1892,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 118.256752 + 152.138992 + 0.891211 TP0207 3d 8 @@ -1451,6 +1901,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 114.822960 + 152.138992 + 1.624389 TP0208 3d 9 @@ -1458,6 +1910,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 109.670013 + 152.138992 + 1.206295 TP0209 3d 8 @@ -1465,6 +1919,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 105.505707 + 151.187805 + 1.535839 TP0210 3d 8 @@ -1472,6 +1928,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 103.665871 + 149.160706 + 1.349027 TP0211 3d 9 @@ -1479,6 +1937,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 105.252121 + 147.681824 + 1.299929 TP0212 3d 8 @@ -1486,6 +1946,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 106.092033 + 147.681824 + 1.171165 TP0213 3d 8 @@ -1493,6 +1955,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 104.699776 + 147.681824 + 1.726084 TP0214 3d 8 @@ -1500,6 +1964,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 104.697060 + 147.681824 + 1.279907 TP0215 3d 9 @@ -1507,6 +1973,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 106.037743 + 144.817627 + 1.258147 TP0216 3d 7 @@ -1514,6 +1982,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 103.740364 + 143.690689 + 1.579578 TP0217 3d 8 @@ -1521,6 +1991,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 100.027649 + 143.690689 + 1.073990 TP0218 3d 8 @@ -1528,6 +2000,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 96.331116 + 171.598877 + 1.557547 TP0219 3d 8 @@ -1535,6 +2009,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 89.904938 + 175.468765 + 1.955361 TP0220 3d 7 @@ -1542,6 +2018,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 84.426712 + 175.468765 + 1.291836 TP0221 3d 8 @@ -1549,6 +2027,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 83.600838 + 175.468765 + 1.551400 TP0222 3d 8 @@ -1556,6 +2036,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 86.592972 + 175.468765 + 1.283579 TP0223 3d 9 @@ -1563,6 +2045,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 89.464699 + 175.468765 + 1.505165 TP0224 3d 9 @@ -1570,6 +2054,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 87.773705 + 175.468765 + 1.161298 TP0225 3d 9 @@ -1577,6 +2063,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 95.692902 + 175.468765 + 1.088356 TP0226 3d 9 @@ -1584,6 +2072,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.201309 + 175.468765 + 0.362650 TP0227 3d 9 @@ -1591,6 +2081,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 95.842636 + 175.468765 + 0.377014 TP0228 3d 9 @@ -1598,6 +2090,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 96.420593 + 175.468765 + 0.340517 TP0229 3d 8 @@ -1605,6 +2099,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 97.553391 + 175.468765 + 0.096594 TP0230 3d 9 @@ -1612,6 +2108,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 97.997795 + 175.468765 + 0.206676 TP0231 3d 9 @@ -1619,6 +2117,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 96.477997 + 175.468765 + 1.065818 TP0232 3d 9 @@ -1626,6 +2126,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 89.552612 + 175.468765 + 1.232277 TP0233 3d 8 @@ -1633,6 +2135,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 83.425354 + 175.468765 + 1.217340 TP0234 3d 9 @@ -1640,6 +2144,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 79.042557 + 175.468765 + 1.393529 TP0235 3d 9 @@ -1647,6 +2153,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.905380 + 175.468765 + 1.738409 TP0236 3d 9 @@ -1654,6 +2162,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 72.990585 + 175.468765 + 1.682981 TP0237 3d 9 @@ -1661,6 +2171,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 69.762535 + 175.468765 + 1.189377 TP0238 3d 8 @@ -1668,6 +2180,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.873619 + 175.468765 + 1.531558 TP0239 3d 8 @@ -1675,6 +2189,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 61.687244 + 175.468765 + 1.349966 TP0240 3d 9 @@ -1682,6 +2198,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 60.878510 + 175.468765 + 1.811747 TP0241 3d 9 @@ -1689,6 +2207,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 60.912205 + 175.468765 + 1.351255 TP0242 3d 8 @@ -1696,6 +2216,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 61.898537 + 175.468765 + 1.227153 TP0243 3d 9 @@ -1703,6 +2225,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.165245 + 175.468765 + 1.598597 TP0244 3d 9 @@ -1710,6 +2234,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 68.273476 + 175.468765 + 0.935148 TP0245 3d 9 @@ -1717,6 +2243,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 69.860306 + 175.468765 + 1.053721 TP0246 3d 9 @@ -1724,6 +2252,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 69.197311 + 175.468765 + 0.918024 TP0247 3d 9 @@ -1731,6 +2261,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.017838 + 175.468765 + 1.308921 TP0248 3d 8 @@ -1738,6 +2270,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.116501 + 175.468765 + 1.576381 TP0249 3d 8 @@ -1745,6 +2279,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 62.031185 + 175.468765 + 1.214055 TP0250 3d 8 @@ -1752,6 +2288,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.191040 + 175.468765 + 1.318986 TP0251 3d 8 @@ -1759,6 +2297,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.152187 + 175.468765 + 1.330799 TP0252 3d 8 @@ -1766,6 +2306,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.187660 + 175.468765 + 1.029365 TP0253 3d 8 @@ -1773,6 +2315,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 62.522697 + 175.468765 + 1.288271 TP0254 3d 9 @@ -1780,6 +2324,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.038860 + 175.468765 + 1.265553 TP0255 3d 8 @@ -1787,6 +2333,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.767090 + 175.468765 + 1.409092 TP0256 3d 9 @@ -1794,6 +2342,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.772144 + 175.468765 + 1.408163 TP0257 3d 8 @@ -1801,6 +2351,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.631092 + 175.468765 + 1.528380 TP0258 3d 8 @@ -1808,6 +2360,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.825020 + 175.468765 + 1.146875 TP0259 3d 8 @@ -1815,6 +2369,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.702190 + 175.468765 + 1.329110 TP0260 3d 9 @@ -1822,6 +2378,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.374817 + 175.468765 + 0.666853 TP0261 3d 8 @@ -1829,6 +2387,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.712070 + 175.468765 + 0.034337 TP0262 3d 9 @@ -1836,6 +2396,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.753304 + 175.468765 + 0.007648 TP0263 3d 8 @@ -1843,6 +2405,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.740093 + 175.468765 + 0.008052 TP0264 3d 8 @@ -1850,6 +2414,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.764366 + 175.468765 + 1.399782 TP0265 3d 9 @@ -1857,6 +2423,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.159416 + 175.468765 + 1.870218 TP0266 3d 8 @@ -1864,6 +2432,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.599651 + 175.468765 + 1.362844 TP0267 3d 9 @@ -1871,6 +2441,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.687393 + 175.468765 + 1.824428 TP0268 3d 8 @@ -1878,6 +2450,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.726231 + 175.468765 + 1.349397 TP0269 3d 8 @@ -1885,6 +2459,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.611576 + 175.468765 + 1.531711 TP0270 3d 9 @@ -1892,6 +2468,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.669785 + 175.468765 + 1.658979 TP0271 3d 8 @@ -1899,6 +2477,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.635204 + 175.468765 + 1.808275 TP0272 3d 8 @@ -1906,6 +2486,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.525986 + 175.468765 + 1.080695 TP0273 3d 9 @@ -1913,6 +2495,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 61.831104 + 175.468765 + 1.497532 TP0274 3d 9 @@ -1920,6 +2504,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.125233 + 175.468765 + 0.938251 TP0275 3d 8 @@ -1927,6 +2513,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.140114 + 175.468765 + 1.955553 TP0276 3d 8 @@ -1934,6 +2522,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.122700 + 175.468765 + 0.980393 TP0277 3d 8 @@ -1941,6 +2531,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.094830 + 175.468765 + 0.562485 TP0278 3d 9 @@ -1948,6 +2540,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.548813 + 175.468765 + 0.210463 TP0279 3d 9 @@ -1955,6 +2549,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.330444 + 175.468765 + 0.091049 TP0280 3d 9 @@ -1962,6 +2558,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.650665 + 175.468765 + 0.703038 TP0281 3d 8 @@ -1969,6 +2567,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.962677 + 175.468765 + 0.581965 TP0282 3d 8 @@ -1976,6 +2576,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.271774 + 175.468765 + 0.555606 TP0283 3d 8 @@ -1983,6 +2585,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.537361 + 175.468765 + 0.640316 TP0284 3d 8 @@ -1990,6 +2594,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.843864 + 175.468765 + 0.203543 TP0285 3d 8 @@ -1997,6 +2603,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.999008 + 175.468765 + 0.052765 TP0286 3d 9 @@ -2004,6 +2612,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.045273 + 175.468765 + 0.103190 TP0287 3d 8 @@ -2011,6 +2621,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.063019 + 175.468765 + 0.446828 TP0288 3d 9 @@ -2018,6 +2630,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.085609 + 175.468765 + 0.461187 TP0289 3d 9 @@ -2025,6 +2639,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.109024 + 175.468765 + 0.192227 TP0290 3d 9 @@ -2032,6 +2648,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.115768 + 175.468765 + 0.138321 TP0291 3d 9 @@ -2039,6 +2657,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.122627 + 175.468765 + 0.126840 TP0292 3d 9 @@ -2046,6 +2666,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.126030 + 175.468765 + 0.526896 TP0293 3d 9 @@ -2053,6 +2675,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.145798 + 175.468765 + 0.868801 TP0294 3d 8 @@ -2060,6 +2684,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.190155 + 175.468765 + 0.743607 TP0295 3d 8 @@ -2067,6 +2693,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.274750 + 175.468765 + 0.594341 TP0296 3d 7 @@ -2074,6 +2702,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.238174 + 175.468765 + 0.597670 TP0297 3d 7 @@ -2081,6 +2711,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.196770 + 175.468765 + 0.635388 TP0298 3d 7 @@ -2088,6 +2720,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.123039 + 175.468765 + 0.721896 TP0299 3d 8 @@ -2095,6 +2729,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.029480 + 175.468765 + 0.509246 TP0300 3d 7 @@ -2102,6 +2738,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.982285 + 175.468765 + 0.084961 TP0301 3d 7 @@ -2109,6 +2747,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.994843 + 175.468765 + 0.467561 TP0302 3d 7 @@ -2116,6 +2756,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.050613 + 175.468765 + 0.171006 TP0303 3d 8 @@ -2123,6 +2765,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.175125 + 175.468765 + 0.259222 TP0304 3d 8 @@ -2130,6 +2774,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.189331 + 175.468765 + 0.163483 TP0305 3d 8 @@ -2137,6 +2783,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.107552 + 175.468765 + 0.943069 TP0306 3d 8 @@ -2144,6 +2792,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.007812 + 175.468765 + 0.276720 TP0307 3d 8 @@ -2151,6 +2801,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.901794 + 175.468765 + 0.131728 TP0308 3d 7 @@ -2158,6 +2810,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.823387 + 175.468765 + 0.441979 TP0309 3d 8 @@ -2165,6 +2819,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.704353 + 175.468765 + 0.559136 TP0310 3d 8 @@ -2172,6 +2828,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.499146 + 175.468765 + 0.881640 TP0311 3d 8 @@ -2179,6 +2837,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.373116 + 175.468765 + 1.139266 TP0312 3d 9 @@ -2186,6 +2846,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 62.448307 + 175.468765 + 1.584432 TP0313 3d 9 @@ -2193,6 +2855,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.711189 + 175.468765 + 0.537779 TP0314 3d 9 @@ -2200,6 +2864,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.081207 + 175.468765 + 1.460763 TP0315 3d 8 @@ -2207,6 +2873,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.331810 + 175.468765 + 0.471566 TP0316 3d 9 @@ -2214,6 +2882,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.433136 + 175.468765 + 1.028151 TP0317 3d 9 @@ -2221,6 +2891,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 68.669930 + 175.468765 + 1.090684 TP0318 3d 8 @@ -2228,6 +2900,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.727882 + 175.468765 + 1.121583 TP0319 3d 8 @@ -2235,6 +2909,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.210159 + 175.468765 + 1.221953 TP0320 3d 9 @@ -2242,6 +2918,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.460991 + 175.468765 + 1.380647 TP0321 3d 9 @@ -2249,6 +2927,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.406555 + 175.468765 + 1.339889 TP0322 3d 8 @@ -2256,6 +2936,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 67.934387 + 175.468765 + 1.000727 TP0323 3d 9 @@ -2263,6 +2945,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 68.325150 + 175.468765 + 1.120354 TP0324 3d 8 @@ -2270,6 +2954,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 68.265938 + 175.468765 + 1.248476 TP0325 3d 8 @@ -2277,6 +2963,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.727936 + 312.802246 + 2.078804 TP0326 3d 9 @@ -2284,6 +2972,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.767967 + 312.802246 + 1.515785 TP0327 3d 9 @@ -2291,6 +2981,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.711159 + 313.321777 + 1.331840 TP0328 3d 8 @@ -2298,6 +2990,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.310825 + 308.333649 + 1.644789 TP0329 3d 8 @@ -2305,6 +2999,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.797432 + 308.333649 + 1.578672 TP0330 3d 9 @@ -2312,6 +3008,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.861481 + 308.333649 + 1.274700 TP0331 3d 8 @@ -2319,6 +3017,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.175739 + 308.138123 + 1.346282 TP0332 3d 9 @@ -2326,6 +3026,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.071518 + 308.138123 + 1.086786 TP0333 3d 8 @@ -2333,6 +3035,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.707954 + 308.138123 + 1.628884 TP0334 3d 8 @@ -2340,6 +3044,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.551117 + 308.138123 + 1.271425 TP0335 3d 8 @@ -2347,6 +3053,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.544510 + 308.138123 + 1.525444 TP0336 3d 8 @@ -2354,6 +3062,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.028717 + 307.519714 + 1.813896 TP0337 3d 8 @@ -2361,6 +3071,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.179455 + 307.519714 + 1.620501 TP0338 3d 9 @@ -2368,6 +3080,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.183289 + 307.519714 + 1.121122 TP0339 3d 9 @@ -2375,6 +3089,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.197002 + 307.519714 + 1.351534 TP0340 3d 9 @@ -2382,6 +3098,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.851364 + 309.039703 + 0.850725 TP0341 3d 9 @@ -2389,6 +3107,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.545170 + 312.476257 + 0.958556 TP0342 3d 9 @@ -2396,6 +3116,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.676037 + 312.476257 + 1.167243 TP0343 3d 9 @@ -2403,6 +3125,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.464268 + 313.447083 + 1.254220 TP0344 3d 9 @@ -2410,6 +3134,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.665562 + 313.648682 + 1.048820 TP0345 3d 9 @@ -2417,6 +3143,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.015507 + 313.648682 + 1.486100 TP0346 3d 9 @@ -2424,6 +3152,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.014637 + 313.648682 + 1.225496 TP0347 3d 9 @@ -2431,6 +3161,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.862492 + 313.648682 + 1.440006 TP0348 3d 8 @@ -2438,6 +3170,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.842957 + 315.012482 + 1.003200 TP0349 3d 10 @@ -2445,6 +3179,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 62.616528 + 315.592804 + 1.093873 TP0350 3d 9 @@ -2452,6 +3188,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.984482 + 315.939636 + 1.132645 TP0351 3d 9 @@ -2459,6 +3197,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 68.956490 + 315.939636 + 1.362898 TP0352 3d 9 @@ -2466,6 +3206,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.422302 + 319.429626 + 1.168481 TP0353 3d 9 @@ -2473,6 +3215,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.506542 + 319.429626 + 1.093485 TP0354 3d 9 @@ -2480,6 +3224,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.629463 + 319.429626 + 1.666819 TP0355 3d 9 @@ -2487,6 +3233,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.207535 + 319.429626 + 1.139789 TP0356 3d 8 @@ -2494,6 +3242,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.054111 + 319.604919 + 1.219204 TP0357 3d 8 @@ -2501,6 +3251,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.180580 + 319.773590 + 1.200754 TP0358 3d 9 @@ -2508,6 +3260,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.299816 + 319.422302 + 1.659349 TP0359 3d 9 @@ -2515,6 +3269,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.162354 + 319.306824 + 1.243625 TP0360 3d 9 @@ -2522,6 +3278,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.651794 + 318.747681 + 1.517840 TP0361 3d 9 @@ -2529,6 +3287,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.516739 + 321.181732 + 1.798075 TP0362 3d 9 @@ -2536,6 +3296,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.297428 + 321.181732 + 1.856496 TP0363 3d 8 @@ -2543,6 +3305,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.169773 + 330.178528 + 1.447083 TP0364 3d 9 @@ -2550,6 +3314,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.141083 + 330.178528 + 0.896336 TP0365 3d 9 @@ -2557,6 +3323,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.489315 + 331.304474 + 1.176047 TP0366 3d 8 @@ -2564,6 +3332,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.591541 + 331.304474 + 0.078315 TP0367 3d 9 @@ -2571,6 +3341,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.805412 + 331.304474 + 0.136545 TP0368 3d 9 @@ -2578,6 +3350,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.838428 + 331.304474 + 0.025752 TP0369 3d 8 @@ -2585,6 +3359,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.977230 + 331.304474 + 1.645710 TP0370 3d 8 @@ -2592,6 +3368,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.424427 + 331.304474 + 1.585729 TP0371 3d 9 @@ -2599,6 +3377,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.248688 + 331.304474 + 1.673960 TP0372 3d 9 @@ -2606,6 +3386,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.105923 + 331.304474 + 1.675777 TP0373 3d 9 @@ -2613,6 +3395,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.622498 + 332.742340 + 1.290782 TP0374 3d 9 @@ -2620,6 +3404,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.549179 + 334.134705 + 1.214838 TP0375 3d 9 @@ -2627,6 +3413,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.688271 + 334.134705 + 1.341584 TP0376 3d 9 @@ -2634,6 +3422,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.874863 + 334.134705 + 1.492571 TP0377 3d 9 @@ -2641,6 +3431,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.305058 + 329.513885 + 1.965910 TP0378 3d 9 @@ -2648,6 +3440,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.478157 + 329.513885 + 1.425542 TP0379 3d 9 @@ -2655,6 +3449,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.679001 + 329.513885 + 1.851270 TP0380 3d 9 @@ -2662,6 +3458,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.855843 + 329.513885 + 1.464016 TP0381 3d 9 @@ -2669,6 +3467,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.440704 + 330.639191 + 1.963235 TP0382 3d 9 @@ -2676,6 +3476,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.094051 + 322.645264 + 1.353058 TP0383 3d 9 @@ -2683,6 +3485,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.460693 + 321.540863 + 1.666589 TP0384 3d 9 @@ -2690,6 +3494,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.066402 + 321.540863 + 1.353564 TP0385 3d 9 @@ -2697,6 +3503,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.422005 + 321.540863 + 1.745178 TP0386 3d 9 @@ -2704,6 +3512,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.895084 + 320.504150 + 1.480854 TP0387 3d 9 @@ -2711,6 +3521,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.325195 + 319.068939 + 1.389258 TP0388 3d 9 @@ -2718,6 +3530,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.249111 + 320.075500 + 1.720982 TP0389 3d 9 @@ -2725,6 +3539,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.936836 + 320.075500 + 1.293412 TP0390 3d 9 @@ -2732,6 +3548,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.254780 + 322.200470 + 1.592284 TP0391 3d 9 @@ -2739,6 +3557,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.248177 + 320.091583 + 1.661003 TP0392 3d 9 @@ -2746,6 +3566,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.113022 + 321.973114 + 1.394113 TP0393 3d 9 @@ -2753,6 +3575,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.821335 + 321.973114 + 1.494689 TP0394 3d 9 @@ -2760,6 +3584,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.473961 + 321.973114 + 1.207032 TP0395 3d 9 @@ -2767,6 +3593,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.814793 + 321.973114 + 1.502668 TP0396 3d 9 @@ -2774,6 +3602,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.531628 + 321.973114 + 1.572504 TP0397 3d 8 @@ -2781,6 +3611,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.942066 + 321.973114 + 1.444465 TP0398 3d 8 @@ -2788,6 +3620,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.970840 + 321.973114 + 1.726603 TP0399 3d 8 @@ -2795,6 +3629,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.620956 + 321.973114 + 1.378629 TP0400 3d 8 @@ -2802,6 +3638,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.710541 + 321.973114 + 1.201835 TP0401 3d 8 @@ -2809,6 +3647,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.266098 + 321.973114 + 1.638500 TP0402 3d 9 @@ -2816,6 +3656,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.388645 + 321.973114 + 0.850153 TP0403 3d 8 @@ -2823,6 +3665,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.071198 + 321.973114 + 1.181594 TP0404 3d 8 @@ -2830,6 +3674,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.571972 + 321.973114 + 1.591521 TP0405 3d 8 @@ -2837,6 +3683,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.149620 + 103.814293 + 1.903993 TP0406 3d 8 @@ -2844,6 +3692,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.482353 + 103.548470 + 1.411737 TP0407 3d 8 @@ -2851,6 +3701,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.727573 + 103.548470 + 1.386361 TP0408 3d 8 @@ -2858,6 +3710,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.446995 + 110.262627 + 1.331973 TP0409 3d 8 @@ -2865,6 +3719,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.487560 + 110.262627 + 1.747993 TP0410 3d 8 @@ -2872,6 +3728,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.564754 + 110.262627 + 1.355807 TP0411 3d 8 @@ -2879,6 +3737,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.682472 + 110.262627 + 1.210973 TP0412 3d 8 @@ -2886,6 +3746,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.204666 + 110.262627 + 1.413509 TP0413 3d 8 @@ -2893,6 +3755,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.814583 + 110.262627 + 1.276915 TP0414 3d 8 @@ -2900,6 +3764,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.905079 + 110.262627 + 1.598764 TP0415 3d 8 @@ -2907,6 +3773,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.048431 + 110.262627 + 1.731465 TP0416 3d 8 @@ -2914,6 +3782,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 40.197262 + 110.262627 + 1.324286 TP0417 3d 7 @@ -2921,6 +3791,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.296478 + 110.262627 + 1.353854 TP0418 3d 7 @@ -2928,6 +3800,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.941608 + 110.262627 + 1.212386 TP0419 3d 7 @@ -2935,6 +3809,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.461550 + 110.262627 + 1.507033 TP0420 3d 7 @@ -2942,6 +3818,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 29.878866 + 110.262627 + 1.728915 TP0421 3d 8 @@ -2949,6 +3827,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 28.686647 + 110.262627 + 0.987423 TP0422 3d 7 @@ -2956,6 +3836,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 28.145824 + 110.262627 + 1.265162 TP0423 3d 8 @@ -2963,6 +3845,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 30.670811 + 110.262627 + 1.836553 TP0424 3d 8 @@ -2970,6 +3854,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.307770 + 110.262627 + 1.310898 TP0425 3d 7 @@ -2977,6 +3863,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.628761 + 110.262627 + 1.622816 TP0426 3d 8 @@ -2984,6 +3872,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 33.369404 + 110.262627 + 1.710149 TP0427 3d 8 @@ -2991,6 +3881,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.297184 + 110.262627 + 1.097964 TP0428 3d 8 @@ -2998,6 +3890,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.706226 + 110.262627 + 1.243773 TP0429 3d 8 @@ -3005,6 +3899,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.490696 + 110.262627 + 1.201586 TP0430 3d 8 @@ -3012,6 +3908,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.541157 + 110.262627 + 1.565976 TP0431 3d 7 @@ -3019,6 +3917,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.153469 + 110.262627 + 1.327252 TP0432 3d 7 @@ -3026,6 +3926,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.474022 + 110.262627 + 1.206724 TP0433 3d 8 @@ -3033,6 +3935,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.568634 + 110.262627 + 1.602677 TP0434 3d 8 @@ -3040,6 +3944,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.217030 + 110.262627 + 1.495651 TP0435 3d 8 @@ -3047,6 +3953,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.042328 + 110.262627 + 1.188114 TP0436 3d 7 @@ -3054,6 +3962,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.052139 + 110.262627 + 1.367975 TP0437 3d 7 @@ -3061,6 +3971,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.222900 + 110.262627 + 1.819672 TP0438 3d 8 @@ -3068,6 +3980,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.862713 + 110.262627 + 1.016674 TP0439 3d 10 @@ -3075,6 +3989,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.347980 + 110.262627 + 1.323934 TP0440 3d 8 @@ -3082,6 +3998,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.428635 + 110.262627 + 1.532402 TP0441 3d 8 @@ -3089,6 +4007,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.590481 + 110.262627 + 1.115400 TP0442 3d 8 @@ -3096,6 +4016,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.579144 + 110.262627 + 1.374582 TP0443 3d 8 @@ -3103,6 +4025,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.594685 + 110.262627 + 1.245201 TP0444 3d 8 @@ -3110,6 +4034,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.934750 + 110.262627 + 1.782246 TP0445 3d 8 @@ -3117,6 +4043,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 46.569092 + 110.262627 + 1.470096 TP0446 3d 7 @@ -3124,6 +4052,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.493629 + 110.262627 + 1.368854 TP0447 3d 7 @@ -3131,6 +4061,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.136349 + 110.262627 + 1.429163 TP0448 3d 8 @@ -3138,6 +4070,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.331181 + 110.262627 + 1.393897 TP0449 3d 7 @@ -3145,6 +4079,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.542187 + 110.262627 + 1.263732 TP0450 3d 8 @@ -3152,6 +4088,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.780071 + 110.262627 + 1.499232 TP0451 3d 8 @@ -3159,6 +4097,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.078159 + 110.262627 + 1.535867 TP0452 3d 7 @@ -3166,6 +4106,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.632629 + 110.262627 + 1.304739 TP0453 3d 7 @@ -3173,6 +4115,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.935654 + 110.262627 + 1.635283 TP0454 3d 7 @@ -3180,6 +4124,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.277405 + 110.262627 + 1.336167 TP0455 3d 7 @@ -3187,6 +4133,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.132778 + 110.262627 + 1.260236 TP0456 3d 8 @@ -3194,6 +4142,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.994057 + 110.262627 + 1.469296 TP0457 3d 8 @@ -3201,6 +4151,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.122032 + 350.169159 + 2.057511 TP0458 3d 7 @@ -3208,6 +4160,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.005985 + 351.339142 + 1.842231 TP0459 3d 7 @@ -3215,6 +4169,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.925455 + 348.956848 + 1.231063 TP0460 3d 7 @@ -3222,6 +4178,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.375824 + 348.956848 + 1.022590 TP0461 3d 7 @@ -3229,6 +4187,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.349483 + 348.956848 + 1.600391 TP0462 3d 7 @@ -3236,6 +4196,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 31.482601 + 348.956848 + 1.725673 TP0463 3d 7 @@ -3243,6 +4205,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.507126 + 348.956848 + 0.978169 TP0464 3d 8 @@ -3250,6 +4214,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.687382 + 348.956848 + 1.592462 TP0465 3d 8 @@ -3257,6 +4223,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.163441 + 348.956848 + 1.546907 TP0466 3d 8 @@ -3264,6 +4232,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.491611 + 348.956848 + 1.383988 TP0467 3d 8 @@ -3271,6 +4241,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.348030 + 348.956848 + 1.699179 TP0468 3d 8 @@ -3278,6 +4250,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.798428 + 348.956848 + 0.890414 TP0469 3d 8 @@ -3285,6 +4259,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.214291 + 348.930817 + 1.420595 TP0470 3d 8 @@ -3292,6 +4268,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.049137 + 348.930817 + 1.415599 TP0471 3d 8 @@ -3299,6 +4277,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.685078 + 348.930817 + 1.477946 TP0472 3d 8 @@ -3306,6 +4286,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 33.834579 + 348.930817 + 1.562345 TP0473 3d 8 @@ -3313,6 +4295,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 33.943275 + 348.930817 + 1.272014 TP0474 3d 8 @@ -3320,6 +4304,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 33.895531 + 348.930817 + 1.120622 TP0475 3d 8 @@ -3327,6 +4313,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.792637 + 348.930817 + 0.046271 TP0476 3d 8 @@ -3334,6 +4322,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.800762 + 348.930817 + 0.233082 TP0477 3d 8 @@ -3341,6 +4331,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 32.808544 + 348.930817 + 1.086615 TP0478 3d 7 @@ -3348,6 +4340,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.294174 + 348.930817 + 0.872653 TP0479 3d 7 @@ -3355,6 +4349,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.032829 + 348.930817 + 0.080512 TP0480 3d 8 @@ -3362,6 +4358,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.242550 + 348.930817 + 0.208565 TP0481 3d 8 @@ -3369,6 +4367,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.257809 + 348.930817 + 0.159674 TP0482 3d 8 @@ -3376,6 +4376,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.275784 + 348.930817 + 0.261805 TP0483 3d 8 @@ -3383,6 +4385,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.169346 + 348.930817 + 0.517310 TP0484 3d 7 @@ -3390,6 +4394,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.053902 + 348.930817 + 0.005382 TP0485 3d 8 @@ -3397,6 +4403,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.035206 + 348.930817 + 0.620699 TP0486 3d 8 @@ -3404,6 +4412,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.035797 + 348.930817 + 1.168755 TP0487 3d 8 @@ -3411,6 +4421,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.142834 + 348.930817 + 0.064666 TP0488 3d 8 @@ -3418,6 +4430,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.185215 + 348.930817 + 0.568796 TP0489 3d 7 @@ -3425,6 +4439,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.453949 + 348.930817 + 0.640305 TP0490 3d 7 @@ -3432,6 +4448,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.875973 + 348.930817 + 0.469342 TP0491 3d 6 @@ -3439,6 +4457,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.764629 + 348.930817 + 0.048115 TP0492 3d 8 @@ -3446,6 +4466,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.832104 + 348.930817 + 0.024468 TP0493 3d 8 @@ -3453,6 +4475,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.959030 + 348.930817 + 0.027468 TP0494 3d 8 @@ -3460,6 +4484,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.036503 + 348.930817 + 0.000968 TP0495 3d 7 @@ -3467,6 +4493,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.044819 + 348.930817 + 0.003053 TP0496 3d 8 @@ -3474,6 +4502,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.079132 + 348.930817 + 0.001238 TP0497 3d 8 @@ -3481,6 +4511,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.114792 + 348.930817 + 0.001593 TP0498 3d 8 @@ -3488,6 +4520,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.142036 + 348.930817 + 0.001471 TP0499 3d 7 @@ -3495,6 +4529,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.151981 + 348.930817 + 0.002685 TP0500 3d 8 @@ -3502,6 +4538,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.177467 + 348.930817 + 0.033977 TP0501 3d 7 @@ -3509,6 +4547,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.209000 + 348.930817 + 0.005408 TP0502 3d 7 @@ -3516,6 +4556,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.344204 + 348.930817 + 0.310761 TP0503 3d 6 @@ -3523,6 +4565,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.398499 + 348.930817 + 0.001647 TP0504 3d 9 @@ -3530,6 +4574,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.406319 + 348.930817 + 0.000534 TP0505 3d 8 @@ -3537,6 +4583,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.386929 + 348.930817 + 0.006597 TP0506 3d 8 @@ -3544,6 +4592,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.373619 + 348.930817 + 0.001887 TP0507 3d 8 @@ -3551,6 +4601,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.371105 + 348.930817 + 0.001814 TP0508 3d 8 @@ -3558,6 +4610,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.344795 + 348.930817 + 0.003021 TP0509 3d 9 @@ -3565,6 +4619,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.337196 + 348.930817 + 0.091405 TP0510 3d 8 @@ -3572,6 +4628,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.323624 + 348.930817 + 0.141361 TP0511 3d 7 @@ -3579,6 +4637,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.344074 + 348.930817 + 0.225306 TP0512 3d 8 @@ -3586,6 +4646,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.372276 + 348.930817 + 0.218948 TP0513 3d 8 @@ -3593,6 +4655,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.406303 + 348.930817 + 0.236625 TP0514 3d 8 @@ -3600,6 +4664,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.413681 + 348.930817 + 0.107134 TP0515 3d 7 @@ -3607,6 +4673,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 35.430824 + 348.930817 + 0.985265 TP0516 3d 8 @@ -3614,6 +4682,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 36.105286 + 266.844727 + 4.132751 TP0517 3d 8 @@ -3621,6 +4691,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 37.403809 + 259.185059 + 4.471956 TP0518 3d 8 @@ -3628,6 +4700,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.307724 + 252.127563 + 4.437634 TP0519 3d 7 @@ -3635,6 +4709,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.680443 + 251.846802 + 3.836235 TP0520 3d 7 @@ -3642,6 +4718,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 38.027061 + 209.976074 + 4.058580 TP0521 3d 8 @@ -3649,6 +4727,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.716564 + 204.307907 + 4.588913 TP0522 3d 8 @@ -3656,6 +4736,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.343742 + 244.933319 + 5.554557 TP0523 3d 9 @@ -3663,6 +4745,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.920643 + 259.753479 + 5.416070 TP0524 3d 8 @@ -3670,6 +4754,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.100410 + 252.850159 + 4.845081 TP0525 3d 8 @@ -3677,6 +4763,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.027779 + 252.758423 + 4.991862 TP0526 3d 8 @@ -3684,6 +4772,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.524376 + 242.889435 + 3.134435 TP0527 3d 9 @@ -3691,6 +4781,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 70.053909 + 256.679993 + 2.597404 TP0528 3d 9 @@ -3698,6 +4790,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 73.381393 + 252.173355 + 0.951098 TP0529 3d 9 @@ -3705,6 +4799,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.317482 + 252.173355 + 0.091881 TP0530 3d 8 @@ -3712,6 +4808,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.994987 + 252.173355 + 0.172823 TP0531 3d 9 @@ -3719,6 +4817,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.340546 + 252.173355 + 0.128724 TP0532 3d 9 @@ -3726,6 +4826,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.514122 + 252.173355 + 0.048526 TP0533 3d 8 @@ -3733,6 +4835,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.590843 + 252.173355 + 0.058741 TP0534 3d 8 @@ -3740,6 +4844,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.640251 + 252.173355 + 0.152493 TP0535 3d 9 @@ -3747,6 +4853,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.699203 + 252.173355 + 0.238902 TP0536 3d 9 @@ -3754,6 +4862,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.752899 + 252.173355 + 0.108655 TP0537 3d 8 @@ -3761,6 +4871,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.710106 + 252.173355 + 0.462379 TP0538 3d 9 @@ -3768,6 +4880,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 76.153221 + 254.655457 + 1.900736 TP0539 3d 8 @@ -3775,6 +4889,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 76.254158 + 254.655457 + 1.152747 TP0540 3d 9 @@ -3782,6 +4898,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 76.716095 + 254.655457 + 0.652538 TP0541 3d 9 @@ -3789,6 +4907,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.835052 + 254.655457 + 0.137812 TP0542 3d 8 @@ -3796,6 +4916,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 76.115974 + 254.655457 + 0.109070 TP0543 3d 8 @@ -3803,6 +4925,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 76.290184 + 254.655457 + 0.408361 TP0544 3d 9 @@ -3810,6 +4934,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.969826 + 254.655457 + 1.837645 TP0545 3d 9 @@ -3817,6 +4943,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 77.609825 + 235.926590 + 2.912988 TP0546 3d 9 @@ -3824,6 +4952,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 71.655617 + 270.661957 + 4.142350 TP0547 3d 8 @@ -3831,6 +4961,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 71.099152 + 250.093170 + 6.080375 TP0548 3d 8 @@ -3838,6 +4970,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 70.996956 + 252.321228 + 6.561866 TP0549 3d 9 @@ -3845,6 +4979,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 69.959251 + 257.005981 + 6.805053 TP0550 3d 8 @@ -3852,6 +4988,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 68.321487 + 257.831085 + 6.886487 TP0551 3d 8 @@ -3859,6 +4997,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.696541 + 254.512512 + 7.342045 TP0552 3d 7 @@ -3866,6 +5006,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.792625 + 254.280838 + 7.414184 TP0553 3d 8 @@ -3873,6 +5015,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.470802 + 252.652267 + 6.798974 TP0554 3d 8 @@ -3880,6 +5024,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.614906 + 250.405945 + 5.200852 TP0555 3d 8 @@ -3887,6 +5033,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 87.300972 + 243.778580 + 4.224462 TP0556 3d 8 @@ -3894,6 +5042,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 89.645264 + 220.766418 + 4.433956 TP0557 3d 8 @@ -3901,6 +5051,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 89.481583 + 160.027557 + 2.849619 TP0558 3d 8 @@ -3908,6 +5060,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.977280 + 157.697861 + 3.073200 TP0559 3d 8 @@ -3915,6 +5069,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.839066 + 156.207596 + 2.867080 TP0560 3d 8 @@ -3922,6 +5078,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 93.679314 + 153.436081 + 1.521562 TP0561 3d 8 @@ -3929,6 +5087,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 93.570442 + 152.649536 + 1.055535 TP0562 3d 8 @@ -3936,6 +5096,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 94.494698 + 152.642792 + 1.342988 TP0563 3d 8 @@ -3943,6 +5105,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 94.901642 + 152.777771 + 1.967363 TP0564 3d 7 @@ -3950,6 +5114,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 91.328278 + 165.346649 + 2.701397 TP0565 3d 8 @@ -3957,6 +5123,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 88.451477 + 161.263718 + 0.906314 TP0566 3d 9 @@ -3964,6 +5132,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 91.141930 + 161.263718 + 0.284965 TP0567 3d 8 @@ -3971,6 +5141,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.172508 + 161.263718 + 0.147965 TP0568 3d 8 @@ -3978,6 +5150,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.461258 + 161.263718 + 0.056669 TP0569 3d 8 @@ -3985,6 +5159,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.556870 + 161.263718 + 0.022265 TP0570 3d 8 @@ -3992,6 +5168,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.568306 + 161.263718 + 0.183284 TP0571 3d 8 @@ -3999,6 +5177,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 92.270767 + 164.544937 + 5.004238 TP0572 3d 8 @@ -4006,6 +5186,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 94.230118 + 171.067032 + 5.614787 TP0573 3d 8 @@ -4013,6 +5195,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 94.349472 + 156.786514 + 5.158871 TP0574 3d 8 @@ -4020,6 +5204,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 95.782722 + 164.016251 + 5.224937 TP0575 3d 8 @@ -4027,6 +5213,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 96.110352 + 153.969543 + 1.648952 TP0576 3d 8 @@ -4034,6 +5222,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 98.264450 + 171.187561 + 2.143247 TP0577 3d 8 @@ -4041,6 +5231,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 101.903290 + 199.763306 + 3.322761 TP0578 3d 8 @@ -4048,6 +5240,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 100.908432 + 249.578110 + 2.721004 TP0579 3d 8 @@ -4055,6 +5249,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 98.441101 + 224.093170 + 1.696266 TP0580 3d 8 @@ -4062,6 +5258,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 99.395744 + 224.093170 + 0.479865 TP0581 3d 8 @@ -4069,6 +5267,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 101.543945 + 224.093170 + 0.332091 TP0582 3d 8 @@ -4076,6 +5276,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 103.097824 + 224.093170 + 0.526310 TP0583 3d 8 @@ -4083,6 +5285,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 104.490097 + 224.093170 + 0.660789 TP0584 3d 8 @@ -4090,6 +5294,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 104.127480 + 224.093170 + 1.696152 TP0585 3d 8 @@ -4097,6 +5303,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 96.356079 + 235.937607 + 4.850880 TP0586 3d 8 @@ -4104,6 +5312,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 97.139885 + 224.755081 + 4.737071 TP0587 3d 8 @@ -4111,6 +5321,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 104.117126 + 173.331863 + 6.159349 TP0588 3d 8 @@ -4118,6 +5330,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 106.810539 + 164.963943 + 6.170879 TP0589 3d 8 @@ -4125,6 +5339,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 106.014999 + 155.442062 + 8.220444 TP0590 3d 8 @@ -4132,6 +5348,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 97.538269 + 163.367905 + 8.647255 TP0591 3d 7 @@ -4139,6 +5357,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 82.294998 + 163.726883 + 6.578135 TP0592 3d 7 @@ -4146,6 +5366,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 78.952164 + 149.311813 + 3.167568 TP0593 3d 8 @@ -4153,6 +5375,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 77.490852 + 163.787460 + 2.939131 TP0594 3d 8 @@ -4160,6 +5384,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 76.258820 + 187.778702 + 4.358074 TP0595 3d 8 @@ -4167,6 +5393,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 73.744034 + 232.966171 + 4.367199 TP0596 3d 9 @@ -4174,6 +5402,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.384712 + 252.393066 + 4.181055 TP0597 3d 8 @@ -4181,6 +5411,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 74.801178 + 252.462280 + 3.949225 TP0598 3d 8 @@ -4188,6 +5420,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 75.366821 + 269.982666 + 2.711499 TP0599 3d 8 @@ -4195,6 +5429,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 72.100449 + 293.740234 + 2.055697 TP0600 3d 8 @@ -4202,6 +5438,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 66.799866 + 296.089447 + 0.724753 TP0601 3d 8 @@ -4209,6 +5447,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.158058 + 296.089447 + 0.137567 TP0602 3d 8 @@ -4216,6 +5456,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.078674 + 296.089447 + 0.298599 TP0603 3d 8 @@ -4223,6 +5465,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.929432 + 284.483185 + 1.926650 TP0604 3d 8 @@ -4230,6 +5474,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.153625 + 285.790466 + 1.220710 TP0605 3d 8 @@ -4237,6 +5483,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.653687 + 285.790466 + 0.452739 TP0606 3d 8 @@ -4244,6 +5492,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.874718 + 285.790466 + 0.111421 TP0607 3d 8 @@ -4251,6 +5501,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 64.960991 + 285.790466 + 0.247384 TP0608 3d 8 @@ -4258,6 +5510,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.153725 + 285.790466 + 0.091423 TP0609 3d 8 @@ -4265,6 +5519,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.226273 + 285.790466 + 0.102427 TP0610 3d 8 @@ -4272,6 +5528,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 65.064758 + 285.790466 + 1.994403 TP0611 3d 8 @@ -4279,6 +5537,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 63.407185 + 277.764008 + 2.465961 TP0612 3d 8 @@ -4286,6 +5546,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.832211 + 277.764008 + 0.090825 TP0613 3d 8 @@ -4293,6 +5555,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.711098 + 277.764008 + 0.055088 TP0614 3d 8 @@ -4300,6 +5564,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.842609 + 277.764008 + 0.138732 TP0615 3d 8 @@ -4307,6 +5573,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.360691 + 277.764008 + 0.054629 TP0616 3d 9 @@ -4314,6 +5582,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.087082 + 277.764008 + 0.087364 TP0617 3d 9 @@ -4321,6 +5591,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.983650 + 277.764008 + 0.027993 TP0618 3d 8 @@ -4328,6 +5600,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.904427 + 277.764008 + 0.081911 TP0619 3d 8 @@ -4335,6 +5609,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.771957 + 277.764008 + 0.109910 TP0620 3d 9 @@ -4342,6 +5618,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.689781 + 277.764008 + 0.097580 TP0621 3d 9 @@ -4349,6 +5627,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.793804 + 277.764008 + 0.070407 TP0622 3d 9 @@ -4356,6 +5636,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.982742 + 276.801270 + 3.207483 TP0623 3d 8 @@ -4363,6 +5645,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.772163 + 275.905151 + 7.975478 TP0624 3d 8 @@ -4370,6 +5654,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 50.279926 + 271.913940 + 9.741137 TP0625 3d 8 @@ -4377,6 +5663,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 48.527409 + 277.201416 + 11.196484 TP0626 3d 6 @@ -4384,6 +5672,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.675247 + 273.109436 + 10.200502 TP0627 3d 8 @@ -4391,6 +5681,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.748550 + 275.711426 + 6.957187 TP0628 3d 5 @@ -4398,6 +5690,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.485603 + 275.435974 + 5.577154 TP0629 3d 8 @@ -4405,6 +5699,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.652260 + 273.934418 + 7.368284 TP0630 3d 8 @@ -4412,6 +5708,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.952404 + 277.044312 + 7.835956 TP0631 3d 8 @@ -4419,6 +5717,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.938480 + 284.357452 + 6.492126 TP0632 3d 8 @@ -4426,6 +5726,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.699963 + 279.845184 + 5.134217 TP0633 3d 7 @@ -4433,6 +5735,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.642509 + 279.834869 + 5.055449 TP0634 3d 8 @@ -4440,6 +5744,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.983074 + 283.039490 + 4.805838 TP0635 3d 8 @@ -4447,6 +5753,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.922935 + 281.840302 + 4.442781 TP0636 3d 6 @@ -4454,6 +5762,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.504242 + 254.771011 + 4.003201 TP0637 3d 8 @@ -4461,6 +5771,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.257427 + 217.023911 + 1.486765 TP0638 3d 8 @@ -4468,6 +5780,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 60.191071 + 217.023911 + 0.421906 TP0639 3d 9 @@ -4475,6 +5789,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 60.932205 + 217.023911 + 0.718218 TP0640 3d 8 @@ -4482,6 +5798,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.798515 + 217.023911 + 1.650865 TP0641 3d 8 @@ -4489,6 +5807,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.948818 + 217.023911 + 0.651361 TP0642 3d 7 @@ -4496,6 +5816,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.779488 + 217.023911 + 1.091384 TP0643 3d 8 @@ -4503,6 +5825,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.241680 + 218.496490 + 0.449520 TP0644 3d 7 @@ -4510,6 +5834,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.076332 + 218.496490 + 0.360533 TP0645 3d 8 @@ -4517,6 +5843,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.866653 + 218.496490 + 0.528669 TP0646 3d 8 @@ -4524,6 +5852,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 52.972622 + 218.496490 + 1.096580 TP0647 3d 8 @@ -4531,6 +5861,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 53.538147 + 218.496490 + 0.625899 TP0648 3d 8 @@ -4538,6 +5870,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.323326 + 218.496490 + 0.327272 TP0649 3d 7 @@ -4545,6 +5879,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.677227 + 218.496490 + 0.018773 TP0650 3d 8 @@ -4552,6 +5888,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 54.826538 + 218.496490 + 0.505743 TP0651 3d 8 @@ -4559,6 +5897,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.053116 + 218.496490 + 0.432382 TP0652 3d 7 @@ -4566,6 +5906,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.106789 + 218.496490 + 0.058583 TP0653 3d 7 @@ -4573,6 +5915,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.116531 + 218.496490 + 0.006754 TP0654 3d 7 @@ -4580,6 +5924,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.115917 + 218.496490 + 0.002260 TP0655 3d 7 @@ -4587,6 +5933,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.117039 + 218.496490 + 0.001856 TP0656 3d 7 @@ -4594,6 +5942,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.136143 + 218.496490 + 0.000805 TP0657 3d 7 @@ -4601,6 +5951,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.148487 + 218.496490 + 0.007480 TP0658 3d 7 @@ -4608,6 +5960,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.162659 + 218.496490 + 0.007337 TP0659 3d 7 @@ -4615,6 +5969,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.205227 + 218.496490 + 0.046721 TP0660 3d 8 @@ -4622,6 +5978,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.188232 + 218.496490 + 0.001944 TP0661 3d 8 @@ -4629,6 +5987,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.159225 + 218.496490 + 0.000416 TP0662 3d 7 @@ -4636,6 +5996,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.142086 + 218.496490 + 0.009314 TP0663 3d 6 @@ -4643,6 +6005,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.137108 + 218.496490 + 0.001668 TP0664 3d 8 @@ -4650,6 +6014,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.102448 + 218.496490 + 0.007567 TP0665 3d 7 @@ -4657,6 +6023,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.135281 + 218.496490 + 0.269319 TP0666 3d 8 @@ -4664,6 +6032,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.178482 + 218.496490 + 0.262931 TP0667 3d 7 @@ -4671,6 +6041,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.160194 + 218.496490 + 0.002955 TP0668 3d 8 @@ -4678,6 +6050,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.152924 + 218.496490 + 0.040493 TP0669 3d 8 @@ -4685,6 +6059,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.263668 + 218.496490 + 0.005129 TP0670 3d 7 @@ -4692,6 +6068,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.369980 + 218.496490 + 0.035897 TP0671 3d 7 @@ -4699,6 +6077,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.426929 + 218.496490 + 0.004630 TP0672 3d 7 @@ -4706,6 +6086,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.402885 + 218.496490 + 0.000865 TP0673 3d 7 @@ -4713,6 +6095,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.452240 + 218.496490 + 0.001837 TP0674 3d 6 @@ -4720,6 +6104,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.465645 + 218.496490 + 0.002016 TP0675 3d 7 @@ -4727,6 +6113,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.428730 + 218.496490 + 0.001942 TP0676 3d 7 @@ -4734,6 +6122,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.371540 + 218.496490 + 0.004365 TP0677 3d 8 @@ -4741,6 +6131,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.368378 + 218.496490 + 0.001333 TP0678 3d 7 @@ -4748,6 +6140,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.364956 + 218.496490 + 0.001297 TP0679 3d 7 @@ -4755,6 +6149,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.386986 + 218.496490 + 0.002019 TP0680 3d 7 @@ -4762,6 +6158,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.424679 + 218.496490 + 0.003237 TP0681 3d 7 @@ -4769,6 +6167,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.468376 + 218.496490 + 0.001680 TP0682 3d 7 @@ -4776,6 +6176,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.533737 + 218.496490 + 0.045060 TP0683 3d 8 @@ -4783,6 +6185,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.539864 + 218.496490 + 0.001506 TP0684 3d 7 @@ -4790,6 +6194,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.562237 + 218.496490 + 0.239861 TP0685 3d 7 @@ -4797,6 +6203,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.626358 + 218.496490 + 0.197063 TP0686 3d 7 @@ -4804,6 +6212,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.744625 + 218.496490 + 0.055380 TP0687 3d 8 @@ -4811,6 +6221,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.884129 + 218.496490 + 0.050798 TP0688 3d 8 @@ -4818,6 +6230,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 55.963707 + 218.496490 + 0.103979 TP0689 3d 6 @@ -4825,6 +6239,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.060684 + 218.496490 + 0.118978 TP0690 3d 6 @@ -4832,6 +6248,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.129726 + 218.496490 + 0.057695 TP0691 3d 6 @@ -4839,6 +6257,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.174274 + 218.496490 + 0.059240 TP0692 3d 6 @@ -4846,6 +6266,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.225285 + 218.496490 + 0.201704 TP0693 3d 8 @@ -4853,6 +6275,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.230228 + 218.496490 + 0.397796 TP0694 3d 7 @@ -4860,6 +6284,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.249668 + 218.496490 + 0.045781 TP0695 3d 7 @@ -4867,6 +6293,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.405598 + 218.496490 + 0.098648 TP0696 3d 7 @@ -4874,6 +6302,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.498055 + 218.496490 + 1.669990 TP0697 3d 7 @@ -4881,6 +6311,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.564190 + 218.496490 + 0.197046 TP0698 3d 7 @@ -4888,6 +6320,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.543667 + 218.496490 + 0.086945 TP0699 3d 8 @@ -4895,6 +6329,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.581444 + 218.496490 + 0.237207 TP0700 3d 8 @@ -4902,6 +6338,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.630741 + 218.496490 + 0.278322 TP0701 3d 8 @@ -4909,6 +6347,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.684647 + 218.496490 + 0.168554 TP0702 3d 8 @@ -4916,6 +6356,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.785572 + 218.496490 + 0.189623 TP0703 3d 7 @@ -4923,6 +6365,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.875393 + 218.496490 + 0.205831 TP0704 3d 7 @@ -4930,6 +6374,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.934406 + 218.496490 + 0.146626 TP0705 3d 7 @@ -4937,6 +6383,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.986214 + 218.496490 + 0.204477 TP0706 3d 7 @@ -4944,6 +6392,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.043221 + 218.496490 + 0.206466 TP0707 3d 7 @@ -4951,6 +6401,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.112270 + 218.496490 + 0.285062 TP0708 3d 8 @@ -4958,6 +6410,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 57.175644 + 218.496490 + 0.962515 TP0709 3d 8 @@ -4965,6 +6419,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.505943 + 86.427399 + 5.513577 TP0710 3d 8 @@ -4972,6 +6428,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.468739 + 96.587524 + 6.088407 TP0711 3d 8 @@ -4979,6 +6437,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.681587 + 99.175896 + 7.924136 TP0712 3d 7 @@ -4986,6 +6446,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 59.009224 + 97.125023 + 6.783049 TP0713 3d 8 @@ -4993,6 +6455,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.753296 + 98.056587 + 7.935850 TP0714 3d 6 @@ -5000,6 +6464,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 61.154079 + 95.442360 + 6.358071 TP0715 3d 7 @@ -5007,6 +6473,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 58.161404 + 100.822197 + 3.633513 TP0716 3d 8 @@ -5014,6 +6482,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 56.524601 + 100.060211 + 1.667719 TP0717 3d 7 @@ -5021,6 +6491,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 51.497704 + 100.060211 + 0.945564 TP0718 3d 7 @@ -5028,6 +6500,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 49.657547 + 97.457619 + 5.678153 TP0719 3d 6 @@ -5035,6 +6509,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.381596 + 97.820015 + 8.726044 TP0720 3d 7 @@ -5042,6 +6518,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.864742 + 96.406525 + 7.575697 TP0721 3d 6 @@ -5049,6 +6527,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 44.151070 + 99.171577 + 6.320168 TP0722 3d 7 @@ -5056,6 +6536,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.129993 + 96.029564 + 5.716181 TP0723 3d 6 @@ -5063,6 +6545,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.655632 + 87.960152 + 5.187541 TP0724 3d 7 @@ -5070,6 +6554,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 47.126694 + 94.451820 + 4.599480 TP0725 3d 7 @@ -5077,6 +6563,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 45.114143 + 89.539085 + 1.616679 TP0726 3d 7 @@ -5084,6 +6572,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.373066 + 89.539085 + 0.130123 TP0727 3d 8 @@ -5091,6 +6581,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.926678 + 89.539085 + 0.037990 TP0728 3d 7 @@ -5098,6 +6590,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.838966 + 89.539085 + 0.066600 TP0729 3d 6 @@ -5105,6 +6599,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.808662 + 89.539085 + 0.032890 TP0730 3d 6 @@ -5112,6 +6608,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.931995 + 89.725197 + 1.613370 TP0731 3d 7 @@ -5119,6 +6617,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.628716 + 76.366776 + 1.858435 TP0732 3d 7 @@ -5126,6 +6626,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.564449 + 76.366776 + 1.088116 TP0733 3d 6 @@ -5133,6 +6635,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.326889 + 76.366776 + 0.334308 TP0734 3d 6 @@ -5140,6 +6644,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.177864 + 76.366776 + 0.121621 TP0735 3d 6 @@ -5147,6 +6653,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.118587 + 76.366776 + 0.180330 TP0736 3d 6 @@ -5154,6 +6662,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.983402 + 76.366776 + 0.220678 TP0737 3d 6 @@ -5161,6 +6671,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.937031 + 76.366776 + 0.209586 TP0738 3d 6 @@ -5168,6 +6680,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.942562 + 76.366776 + 0.383057 TP0739 3d 6 @@ -5175,6 +6689,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.979713 + 76.366776 + 0.535772 TP0740 3d 7 @@ -5182,6 +6698,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.011913 + 76.366776 + 1.207049 TP0741 3d 7 @@ -5189,6 +6707,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.784576 + 49.888649 + 2.445696 TP0742 3d 7 @@ -5196,6 +6716,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 43.211819 + 52.977341 + 1.469321 TP0743 3d 7 @@ -5203,6 +6725,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.772743 + 52.977341 + 0.912314 TP0744 3d 6 @@ -5210,6 +6734,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 42.345959 + 54.474190 + 1.039766 TP0745 3d 7 @@ -5217,6 +6743,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.845848 + 75.363075 + 2.503152 TP0746 3d 7 @@ -5224,6 +6752,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 41.465397 + 18.042631 + 4.031073 TP0747 3d 7 @@ -5231,6 +6761,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 39.201557 + 350.312469 + 5.227849 TP0748 3d 7 @@ -5238,6 +6770,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 34.905659 + 338.893219 + 7.202540 TP0749 3d 7 @@ -5245,6 +6779,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 29.181751 + 342.903381 + 7.421690 TP0750 3d 7 @@ -5252,6 +6788,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 26.025524 + 338.657623 + 8.680714 TP0751 3d 7 @@ -5259,6 +6797,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.058689 + 341.594208 + 6.506355 TP0752 3d 7 @@ -5266,6 +6806,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.503670 + 334.948120 + 5.052996 TP0753 3d 7 @@ -5273,6 +6815,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 21.750463 + 339.453552 + 4.743180 TP0754 3d 7 @@ -5280,6 +6824,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 21.274805 + 21.269533 + 3.732276 TP0755 3d 7 @@ -5287,6 +6833,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.930449 + 57.253983 + 2.689401 TP0756 3d 7 @@ -5294,6 +6842,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 23.571939 + 57.935402 + 0.575326 TP0757 3d 7 @@ -5301,6 +6851,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 21.758852 + 57.935402 + 0.272819 TP0758 3d 7 @@ -5308,6 +6860,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 20.467566 + 57.935402 + 0.075399 TP0759 3d 7 @@ -5315,6 +6869,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 20.074856 + 57.935402 + 0.070384 TP0760 3d 7 @@ -5322,6 +6878,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 19.931931 + 57.935402 + 0.713890 TP0761 3d 7 @@ -5329,6 +6887,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 20.842930 + 63.193348 + 3.130648 TP0762 3d 7 @@ -5336,6 +6896,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 21.649963 + 68.431618 + 3.442213 TP0763 3d 7 @@ -5343,6 +6905,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 25.562002 + 32.924171 + 3.361054 TP0764 3d 7 @@ -5350,6 +6914,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 26.968969 + 344.355225 + 4.310341 TP0765 3d 7 @@ -5357,6 +6923,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 27.406101 + 341.821838 + 5.076190 TP0766 3d 7 @@ -5364,6 +6932,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 27.535704 + 339.747223 + 4.408119 TP0767 3d 7 @@ -5371,6 +6941,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 28.154795 + 341.113464 + 4.573566 TP0768 3d 7 @@ -5378,6 +6950,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.246796 + 339.732819 + 4.079585 TP0769 3d 7 @@ -5385,6 +6959,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 23.303711 + 339.514862 + 1.597809 TP0770 3d 7 @@ -5392,6 +6968,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.946005 + 339.514862 + 0.156533 TP0771 3d 7 @@ -5399,6 +6977,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.590355 + 339.514862 + 0.142250 TP0772 3d 7 @@ -5406,6 +6986,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.535629 + 339.514862 + 0.360152 TP0773 3d 7 @@ -5413,6 +6995,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.427177 + 339.514862 + 0.361612 TP0774 3d 7 @@ -5420,6 +7004,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.243149 + 339.514862 + 0.431612 TP0775 3d 7 @@ -5427,6 +7013,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.084087 + 339.514862 + 0.555251 TP0776 3d 7 @@ -5434,6 +7022,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.227612 + 346.195099 + 3.421367 TP0777 3d 7 @@ -5441,6 +7031,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.550591 + 332.352997 + 5.118948 TP0778 3d 7 @@ -5448,6 +7040,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.790329 + 339.528839 + 4.719919 TP0779 3d 7 @@ -5455,6 +7049,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.882000 + 337.760681 + 3.929679 TP0780 3d 7 @@ -5462,6 +7058,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 24.885988 + 326.768158 + 3.181422 TP0781 3d 7 @@ -5469,6 +7067,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 22.894363 + 36.511124 + 4.846198 TP0782 3d 7 @@ -5476,6 +7076,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 21.994968 + 62.685516 + 5.946139 TP0783 3d 7 @@ -5483,6 +7085,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 20.402012 + 61.447033 + 6.089304 TP0784 3d 7 @@ -5490,6 +7094,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 18.011835 + 70.627136 + 7.146325 TP0785 3d 7 @@ -5497,6 +7103,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 16.479000 + 72.116966 + 5.706940 TP0786 3d 7 @@ -5504,6 +7112,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 15.727952 + 72.860649 + 6.682722 TP0787 3d 6 @@ -5511,6 +7121,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 13.501931 + 74.065750 + 5.324975 TP0788 3d 6 @@ -5518,6 +7130,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 12.321080 + 81.119461 + 3.683437 TP0789 3d 6 @@ -5525,6 +7139,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 11.192452 + 75.343231 + 2.929381 TP0790 3d 6 @@ -5532,6 +7148,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 9.391747 + 69.857574 + 2.541023 TP0791 3d 6 @@ -5539,6 +7157,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 7.392978 + 95.088768 + 3.015811 TP0792 3d 7 @@ -5546,6 +7166,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 11.171357 + 48.301205 + 2.121240 TP0793 3d 7 @@ -5553,6 +7175,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 16.152731 + 345.122620 + 3.099985 TP0794 3d 7 @@ -5560,6 +7184,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 15.429770 + 349.252014 + 3.720629 TP0795 3d 6 @@ -5567,6 +7193,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 18.443081 + 49.279705 + 4.131574 TP0796 3d 7 @@ -5574,6 +7202,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.724062 + 70.644554 + 4.497624 TP0797 3d 7 @@ -5581,6 +7211,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 16.861166 + 64.961960 + 3.303369 TP0798 3d 7 @@ -5588,6 +7220,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 16.343344 + 57.725773 + 0.167609 TP0799 3d 7 @@ -5595,6 +7229,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.903362 + 57.725773 + 0.082964 TP0800 3d 7 @@ -5602,6 +7238,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.818550 + 57.725773 + 0.161319 TP0801 3d 7 @@ -5609,6 +7247,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.827591 + 57.725773 + 0.130852 TP0802 3d 7 @@ -5616,6 +7256,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.853209 + 57.725773 + 0.068195 TP0803 3d 7 @@ -5623,6 +7265,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.841661 + 57.725773 + 0.183443 TP0804 3d 7 @@ -5630,6 +7274,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.868876 + 57.725773 + 0.195327 TP0805 3d 6 @@ -5637,6 +7283,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.897980 + 57.725773 + 0.249844 TP0806 3d 6 @@ -5644,6 +7292,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.911112 + 57.725773 + 0.274289 TP0807 3d 6 @@ -5651,6 +7301,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 17.954067 + 57.725773 + 0.199295 TP0808 3d 6 @@ -5658,6 +7310,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 18.035896 + 57.725773 + 0.061631 TP0809 3d 6 @@ -5665,6 +7319,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 18.049931 + 57.725773 + 0.232345 TP0810 3d 6 @@ -5672,6 +7328,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 18.316492 + 68.676346 + 5.247779 TP0811 3d 6 @@ -5679,6 +7337,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 20.202015 + 77.141609 + 6.035380 TP0812 3d 6 @@ -5686,6 +7346,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 21.015213 + 79.136803 + 6.096270 TP0813 3d 7 @@ -5693,6 +7355,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 22.754051 + 73.930702 + 5.832743 TP0814 3d 7 @@ -5700,6 +7364,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 25.730627 + 76.704651 + 4.485237 TP0815 3d 7 @@ -5707,12 +7373,16 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/ 29.132912 + 0.000000 + 0.000000 TP0816 none 29.132912 + 0.000000 + 0.000000 TP0817 none diff --git a/xmldoc/formats/mtk-bin.xml b/xmldoc/formats/mtk-bin.xml index cc098a9c7..940283630 100644 --- a/xmldoc/formats/mtk-bin.xml +++ b/xmldoc/formats/mtk-bin.xml @@ -1,12 +1,26 @@ -File protocol for MTK based GPS loggers. +Binary file protocol converter for MTK based GPS loggers. This format reads the raw binary format created by the MTK Windows application -and outputs to other gpsbabel suppoted formats. -When using the csv option a MTK application compatible output file will also be created. +and outputs to other gpsbabel supported formats. +When using the csv option a MTK application compatible output file will also be created. + +It has been tested with Transystem i-Blue 747 but other devices should +work as well (Qstarz BT-Q1000, iTrek Z1, ...) + +All position items (including button push) will be listed as trackpoints in the output. +Log items due to button push are presented as waypoints. +In theory we would not add waypoints to the list of trackpoints. But as the MTK logger restart the +log session from the button press we would loose a trackpoint unless we include/duplicate it. + + Transystem i-Blue 747 - Command showing conversion of a MTK binary file to GPX with an additional CSV output file. - gpsbabel -i mtk-bin,csv=extra.csv -f data.bin -o gpx -F out.gpx + Convert MTK binary trackpoints to GPX + + gpsbabel -t -i mtk-bin,csv=extra.csv -f data.bin -o gpx -F out.gpx + Additionally a CSV output file is created. + + diff --git a/xmldoc/formats/mtk.xml b/xmldoc/formats/mtk.xml index 0bf4e4b2d..db92c521b 100644 --- a/xmldoc/formats/mtk.xml +++ b/xmldoc/formats/mtk.xml @@ -1,11 +1,21 @@ Serial download protocol for the i-Blue 747 and other MTK based GPS data loggers. Observe that it is only possible to download data using USB cable, Bluetooth requires a hardware modification. Transystem i-Blue 747 -Downloaded data will be storef in data.bin file in the current directory together with +Downloaded data will be stored in data.bin file in the current directory together with the choosen output format. +It has been tested with Transystem i-Blue 747 but other devices should work as well (Qstarz BT-Q1000, iTrek Z1, ...) + +See mtk-bin on how trackpoints/waypoints are handled - Command showing MTK download and erase on Linux + Command showing MTK download track and waypoints and erase on Linux gpsbabel -t -w -i mtk,erase -f /dev/ttyUSB0 -o gpx -F out.gpx + + For more info and tweaks on MTK based loggers: + MTK Tips ans Tweaks + iBlue 747 Logger + For info about the used log format: + MTK binary format + -- 2.30.2